home *** CD-ROM | disk | FTP | other *** search
- function updateRight(frameToDisplay)
- {
- }
- _global.MorseCode = new Object();
- MorseCode._tl = this;
- newDepth = 99;
- this.onUnload = function()
- {
- delete MorseCode;
- this.unloadMovie();
- };
- btnClip_0.onRollOver = function()
- {
- preview_mc.gotoAndStop(2);
- };
- i = 1;
- while(i < 17)
- {
- duplicateMovieClip("btnClip_0","btnClip_" + i,16384 + newDepth++);
- clipToEffect = eval("btnClip_" + i);
- clipToEffect.frameNum = i + 2;
- clipToEffect.image_mc.gotoAndStop(i + 1);
- clipToEffect._x = i % 5 * 72 + 10;
- clipToEffect._y = Math.floor(i * 0.2) * 72 + 50;
- clipToEffect.onRollOver = function()
- {
- preview_mc.gotoAndStop(this.frameNum);
- };
- clipToEffect.onRollOut = function()
- {
- preview_mc.gotoAndStop(1);
- };
- i++;
- }
-